home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / test / suplib / gettail.c < prev    next >
C/C++ Source or Header  |  1992-10-25  |  201b  |  15 lines

  1.  
  2. #include <stdio.h>
  3. #include <suplib/lists.h>
  4.  
  5. void *
  6. GetTail(struct List *list)
  7. {
  8.     struct Node *node = list->lh_TailPred;
  9.  
  10.     if (node->ln_Pred == NULL)
  11.     node = NULL;
  12.     return((void *)node);
  13. }
  14.  
  15.